UserProfileProvider constructor
UserProfileProvider()
Implementation
factory UserProfileProvider() {
if (_instance == null) {
final MethodChannel methodChannel = const MethodChannel("plugins.babariviere.com/userProfile", const JSONMethodCodec());
_instance = new UserProfileProvider._private(methodChannel);
}
return _instance!;
}