getConfig method

  1. @override
Future<Map<String, dynamic>?> getConfig()
override

SDKClientConfig 형태: { userKey, userPhone, proxyUrl, safeArea: { top, bottom, left, right }? }

Implementation

@override
Future<Map<String, dynamic>?> getConfig() async {
  final result = await methodChannel.invokeMethod<Map>('getConfig');
  return result != null ? Map<String, dynamic>.from(result) : null;
}