containers method
Method returns containers by result type. If result type doesn't exist, the result of the search will be null.
Returns original containers from rawResult including information about the transaction.
Implementation
Future<String?> containers(List<ResultType> resultType) async {
List<int> converted = [];
for (ResultType item in resultType) {
converted.add(item.value);
}
return await _bridge.invokeMethod("containers", [rawResult, converted]);
}