SteamMethod constructor

SteamMethod({
  1. required String name,
  2. required String nameFlat,
  3. required String returnType,
  4. List<SteamParam> params = const [],
  5. String returnTypeFlat = "",
  6. String callResult = "",
  7. String callback = "",
})

Creates a SteamMethod. This constructor is used for manual SteamMethod creation

Implementation

SteamMethod({
  required this.name,
  required this.nameFlat,
  required this.returnType,
  this.params = const [],
  this.returnTypeFlat = "",
  this.callResult = "",
  this.callback = "",
});