init method
Implementation
@override
Future init(String apiKey, String secretKey, {ProdegePlayOptions? options}) =>
methodChannel.invokeMethod("init", {
"apiKey": apiKey,
"secretKey": secretKey,
"userId": options?.userId,
"tags": options?.tags,
"gender": options?.profile?.gender?.name,
"dateOfBirth": _extractDateOfBirth(options?.profile?.dateOfBirth),
});