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