NotMethodException constructor

const NotMethodException({
  1. required String method,
  2. bool encrypted = false,
})

An exception saying that method is not valid when it should be

Implementation

const NotMethodException({required this.method, this.encrypted = false});