createSourceWithParams static method

Future<Source> createSourceWithParams(
  1. SourceParams options
)

Implementation

static Future<Source> createSourceWithParams(SourceParams options) async {
  final source = await _channel.invokeMethod("createSourceWithParams", options.toJson());
  return Source.fromJson(source);
}