getBlindScale function

Future<int> getBlindScale(
  1. String assetType
)

Implementation

Future<int> getBlindScale(String assetType) async {
  final result = await FbblApi.fbblGenerateNumericHash(input: assetType);
  return result.toInt();
}