TableConstraintsPrimaryKey.fromJson constructor

TableConstraintsPrimaryKey.fromJson(
  1. Map json_
)

Implementation

TableConstraintsPrimaryKey.fromJson(core.Map json_)
    : this(
        columns: json_.containsKey('columns')
            ? (json_['columns'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );