Input$CustomMessageInput constructor

Input$CustomMessageInput({
  1. String? id,
  2. String? type,
})

Implementation

factory Input$CustomMessageInput({
  String? id,
  String? type,
}) =>
    Input$CustomMessageInput._({
      if (id != null) r'id': id,
      if (type != null) r'type': type,
    });