CrashlyticsStackFrame constructor

CrashlyticsStackFrame({
  1. String? className,
  2. required String method,
  3. required String file,
  4. required String line,
})

Implementation

CrashlyticsStackFrame({
  this.className,
  required this.method,
  required this.file,
  required this.line,
});