SchematizedData.fromJson constructor

SchematizedData.fromJson(
  1. Map json_
)

Implementation

SchematizedData.fromJson(core.Map json_)
  : this(
      data: json_['data'] as core.String?,
      error: json_['error'] as core.String?,
    );