GetMyInstanceResponse constructor

GetMyInstanceResponse({
  1. InstanceDetail? instance,
})

Implementation

factory GetMyInstanceResponse({
  $25.InstanceDetail? instance,
}) {
  final _result = create();
  if (instance != null) {
    _result.instance = instance;
  }
  return _result;
}