restore method

  1. @override
Future<RestoreResultEntity> restore(
  1. String userIdentifier
)
override

Implementation

@override
Future<RestoreResultEntity> restore(String userIdentifier) async {
  var resp = await methodChannel.invokeMethod(MethodCallName.restore, {"identifier": userIdentifier});
  return RestoreResultEntity.fromJson(resp);
}