RowObject.fromJson constructor

RowObject.fromJson(
  1. Map<String, String> json
)

Generate a RowObject from json

Implementation

RowObject.fromJson(final Map<String, String> json)
    : name = json['name']!,
      type = json['type']!,
      value = json['value'];