asMap method

Map<String, dynamic> asMap(
  1. String name
)

convert the field with name to a Map. Currently expects that the map is stored as a Blob

Implementation

Map<String, dynamic> asMap(String name) =>
    jsonDecode(row.colByName(name).toString()) as Map<String, dynamic>;