ColumnDescriptor.fromJson constructor

ColumnDescriptor.fromJson(
  1. Map json_
)

Implementation

ColumnDescriptor.fromJson(core.Map json_)
  : this(
      bigqueryPolicyTags: (json_['bigqueryPolicyTags'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      description: json_['description'] as core.String?,
      path: (json_['path'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );