LexToken constructor

  1. @JsonSerializable(includeIfNull: false)
const LexToken({
  1. @Default('token') String type,
  2. String? description,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory LexToken({
  @Default('token') String type,
  String? description,
}) = _LexToken;