ColumnLevelPermissionRule.fromJson constructor
Implementation
factory ColumnLevelPermissionRule.fromJson(Map<String, dynamic> json) {
  return ColumnLevelPermissionRule(
    columnNames: (json['ColumnNames'] as List?)
        ?.whereNotNull()
        .map((e) => e as String)
        .toList(),
    principals: (json['Principals'] as List?)
        ?.whereNotNull()
        .map((e) => e as String)
        .toList(),
  );
}