ConvertRowIdToColumn.fromJson constructor

ConvertRowIdToColumn.fromJson(
  1. Map json_
)

Implementation

ConvertRowIdToColumn.fromJson(core.Map json_)
    : this(
        onlyIfNoPrimaryKey: json_.containsKey('onlyIfNoPrimaryKey')
            ? json_['onlyIfNoPrimaryKey'] as core.bool
            : null,
      );