getSourceById method

Future<List> getSourceById({
  1. required String sourceId,
})

Get a specific source by id

Implementation

Future<List<dynamic>> getSourceById({
  /// A specific source id
  required String sourceId,
}) async {
  return await getSourceByIdV1(
    connection: _connection,
    sourceId: sourceId,
  );
}