$FieldError.fromJson constructor

$FieldError.fromJson(
  1. Map json_
)

Implementation

$FieldError.fromJson(core.Map json_)
  : this(
      fieldId: json_['fieldId'] as core.int?,
      fieldName: json_['fieldName'] as core.String?,
      fieldValues:
          (json_['fieldValues'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      ingestionError: json_['ingestionError'] as core.String?,
      isError: json_['isError'] as core.bool?,
    );