initialize method
Initialises the SDK. baseUrl is optional, an API URL override useful in
development to point at localhost.
Implementation
@override
Future<AppwinInitResult> initialize() async {
final raw = await methodChannel.invokeMethod<Map<Object?, Object?>>(
'initialize',
);
return AppwinInitResult.fromMap(raw);
}