InlineObject constructor

InlineObject({
  1. int? code,
  2. String? message,
  3. Map<String, List<String>> errors = const {},
})

Returns a new InlineObject instance.

Implementation

InlineObject({
  this.code,
  this.message,
  this.errors = const {},
});