load method

Future load(
  1. {String password}
)

Load Ver-ID @param password Ver-ID API password (if omitted the library will look in the app's plist (iOS) or manifest (Android)) @returns Promise whose resolve function's argument contains the loaded Ver-ID instance @example

Implementation

static Future<VerID> load({String password}) async {
  String tempResult;
  VerID resultObj;
  tempResult = await channel.invokeMethod('load', {"password": password});
  resultObj = new VerID();

  developer.log(tempResult);
  return resultObj;
}