LicenseAssignmentInsert.fromJson constructor

LicenseAssignmentInsert.fromJson(
  1. Map json_
)

Implementation

LicenseAssignmentInsert.fromJson(core.Map json_)
    : this(
        userId: json_.containsKey('userId')
            ? json_['userId'] as core.String
            : null,
      );