InvalidArgumentsException constructor

InvalidArgumentsException({
  1. required Map<String, dynamic>? arguments,
})

Implementation

InvalidArgumentsException({required Map<String, dynamic>? arguments}) {
  this.message = "Invalid Arguments: ${jsonEncode(arguments)}";
}