Cell.fromMap constructor

Cell.fromMap(
  1. Map<String, dynamic> json
)

Serialization

Implementation

factory Cell.fromMap(Map<String, dynamic> json) => Cell._(
      value: json["value"] == null ? null : json["value"],
      isPrefill: json["is_prefill"] == null ? null : json["is_prefill"],
      isValid: json["is_valid"] == null ? null : json["is_valid"],
      markup: json["markup"] == null ? null : json["markup"],
      isPristine: json["is_pristine"] == null ? null : json["is_pristine"],
      position: json["position"] == null
          ? null
          : Position.fromMap(json["position"]),
    );