toPlatformChannelArgs method

Map<String, dynamic> toPlatformChannelArgs()

Convert to the format expected by the platform channel

Implementation

Map<String, dynamic> toPlatformChannelArgs() {
  return {
    'sessionId': sessionId,
    'accessKeyId': credentials.id,
    'secretAccessKey': credentials.accessKey,
    'sessionToken': credentials.token,
    'region': 'eu-west-1', // Default region - should match iOS
  };
}