ApiModel constructor

ApiModel({
  1. String name = '',
  2. required String url,
  3. bool mock = false,
})

Implementation

ApiModel({
  this.name = '',
  required this.url,
  this.mock = false,
});