IndexConfig.fromJson constructor

IndexConfig.fromJson(
  1. Map json_
)

Implementation

IndexConfig.fromJson(core.Map json_)
    : this(
        createTime: json_.containsKey('createTime')
            ? json_['createTime'] as core.String
            : null,
        fieldPath: json_.containsKey('fieldPath')
            ? json_['fieldPath'] as core.String
            : null,
        type: json_.containsKey('type') ? json_['type'] as core.String : null,
      );