ImportRowErrorArchiveErrorDetails.fromJson constructor

ImportRowErrorArchiveErrorDetails.fromJson(
  1. Map json_
)

Implementation

ImportRowErrorArchiveErrorDetails.fromJson(core.Map json_)
  : this(
      csvError: json_.containsKey('csvError')
          ? ImportRowErrorCsvErrorDetails.fromJson(
              json_['csvError'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      filePath: json_['filePath'] as core.String?,
    );