getParameters method

  1. @override
Future<String?> getParameters()
override

Gets the current parameters as a JSON string

Returns a JSON string with the current parameters.

Implementation

@override
Future<String?> getParameters() async {
  return await methodChannel.invokeMethod<String>('getParameters');
}