Input$GamePointInput constructor

Input$GamePointInput({
  1. required String name,
  2. required String code,
  3. required Input$PictureInput picture,
})

Implementation

factory Input$GamePointInput({
  required String name,
  required String code,
  required Input$PictureInput picture,
}) =>
    Input$GamePointInput._({
      r'name': name,
      r'code': code,
      r'picture': picture,
    });