IndexConfig.fromJson constructor

IndexConfig.fromJson(
  1. Map json_
)

Implementation

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