Files
fl_chart/test/chart/scatter_chart/scatter_chart_painter_test.mocks.dart
zypherift c7e3f36b06
Some checks failed
Code Coverage / upload (push) Has been cancelled
Gh-Pages / build (push) Has been cancelled
Code Verification / verify (push) Has been cancelled
1.0.0
2025-08-09 18:17:34 +02:00

925 lines
25 KiB
Dart

// Mocks generated by Mockito 5.4.5 from annotations
// in fl_chart/test/chart/scatter_chart/scatter_chart_painter_test.dart.
// Do not manually edit this file.
// ignore_for_file: no_leading_underscores_for_library_prefixes
import 'dart:typed_data' as _i5;
import 'dart:ui' as _i2;
import 'package:fl_chart/fl_chart.dart' as _i7;
import 'package:fl_chart/src/utils/canvas_wrapper.dart' as _i6;
import 'package:fl_chart/src/utils/utils.dart' as _i8;
import 'package:flutter/cupertino.dart' as _i3;
import 'package:flutter/foundation.dart' as _i4;
import 'package:mockito/mockito.dart' as _i1;
import 'package:mockito/src/dummies.dart' as _i9;
// ignore_for_file: type=lint
// ignore_for_file: avoid_redundant_argument_values
// ignore_for_file: avoid_setters_without_getters
// ignore_for_file: comment_references
// ignore_for_file: deprecated_member_use
// ignore_for_file: deprecated_member_use_from_same_package
// ignore_for_file: implementation_imports
// ignore_for_file: invalid_use_of_visible_for_testing_member
// ignore_for_file: must_be_immutable
// ignore_for_file: prefer_const_constructors
// ignore_for_file: unnecessary_parenthesis
// ignore_for_file: camel_case_types
// ignore_for_file: subtype_of_sealed_class
class _FakeRect_0 extends _i1.SmartFake implements _i2.Rect {
_FakeRect_0(Object parent, Invocation parentInvocation)
: super(parent, parentInvocation);
}
class _FakeCanvas_1 extends _i1.SmartFake implements _i2.Canvas {
_FakeCanvas_1(Object parent, Invocation parentInvocation)
: super(parent, parentInvocation);
}
class _FakeSize_2 extends _i1.SmartFake implements _i2.Size {
_FakeSize_2(Object parent, Invocation parentInvocation)
: super(parent, parentInvocation);
}
class _FakeWidget_3 extends _i1.SmartFake implements _i3.Widget {
_FakeWidget_3(Object parent, Invocation parentInvocation)
: super(parent, parentInvocation);
@override
String toString({_i3.DiagnosticLevel? minLevel = _i3.DiagnosticLevel.info}) =>
super.toString();
}
class _FakeInheritedWidget_4 extends _i1.SmartFake
implements _i3.InheritedWidget {
_FakeInheritedWidget_4(Object parent, Invocation parentInvocation)
: super(parent, parentInvocation);
@override
String toString({_i3.DiagnosticLevel? minLevel = _i3.DiagnosticLevel.info}) =>
super.toString();
}
class _FakeDiagnosticsNode_5 extends _i1.SmartFake
implements _i3.DiagnosticsNode {
_FakeDiagnosticsNode_5(Object parent, Invocation parentInvocation)
: super(parent, parentInvocation);
@override
String toString({
_i4.TextTreeConfiguration? parentConfiguration,
_i3.DiagnosticLevel? minLevel = _i3.DiagnosticLevel.info,
}) => super.toString();
}
class _FakeOffset_6 extends _i1.SmartFake implements _i2.Offset {
_FakeOffset_6(Object parent, Invocation parentInvocation)
: super(parent, parentInvocation);
}
class _FakeBorderSide_7 extends _i1.SmartFake implements _i3.BorderSide {
_FakeBorderSide_7(Object parent, Invocation parentInvocation)
: super(parent, parentInvocation);
@override
String toString({_i3.DiagnosticLevel? minLevel = _i3.DiagnosticLevel.info}) =>
super.toString();
}
class _FakeTextStyle_8 extends _i1.SmartFake implements _i3.TextStyle {
_FakeTextStyle_8(Object parent, Invocation parentInvocation)
: super(parent, parentInvocation);
@override
String toString({_i3.DiagnosticLevel? minLevel = _i3.DiagnosticLevel.info}) =>
super.toString();
}
/// A class which mocks [Canvas].
///
/// See the documentation for Mockito's code generation for more information.
class MockCanvas extends _i1.Mock implements _i2.Canvas {
MockCanvas() {
_i1.throwOnMissingStub(this);
}
@override
void save() => super.noSuchMethod(
Invocation.method(#save, []),
returnValueForMissingStub: null,
);
@override
void saveLayer(_i2.Rect? bounds, _i2.Paint? paint) => super.noSuchMethod(
Invocation.method(#saveLayer, [bounds, paint]),
returnValueForMissingStub: null,
);
@override
void restore() => super.noSuchMethod(
Invocation.method(#restore, []),
returnValueForMissingStub: null,
);
@override
void restoreToCount(int? count) => super.noSuchMethod(
Invocation.method(#restoreToCount, [count]),
returnValueForMissingStub: null,
);
@override
int getSaveCount() =>
(super.noSuchMethod(Invocation.method(#getSaveCount, []), returnValue: 0)
as int);
@override
void translate(double? dx, double? dy) => super.noSuchMethod(
Invocation.method(#translate, [dx, dy]),
returnValueForMissingStub: null,
);
@override
void scale(double? sx, [double? sy]) => super.noSuchMethod(
Invocation.method(#scale, [sx, sy]),
returnValueForMissingStub: null,
);
@override
void rotate(double? radians) => super.noSuchMethod(
Invocation.method(#rotate, [radians]),
returnValueForMissingStub: null,
);
@override
void skew(double? sx, double? sy) => super.noSuchMethod(
Invocation.method(#skew, [sx, sy]),
returnValueForMissingStub: null,
);
@override
void transform(_i5.Float64List? matrix4) => super.noSuchMethod(
Invocation.method(#transform, [matrix4]),
returnValueForMissingStub: null,
);
@override
_i5.Float64List getTransform() =>
(super.noSuchMethod(
Invocation.method(#getTransform, []),
returnValue: _i5.Float64List(0),
)
as _i5.Float64List);
@override
void clipRect(
_i2.Rect? rect, {
_i2.ClipOp? clipOp = _i2.ClipOp.intersect,
bool? doAntiAlias = true,
}) => super.noSuchMethod(
Invocation.method(
#clipRect,
[rect],
{#clipOp: clipOp, #doAntiAlias: doAntiAlias},
),
returnValueForMissingStub: null,
);
@override
void clipRRect(_i2.RRect? rrect, {bool? doAntiAlias = true}) =>
super.noSuchMethod(
Invocation.method(#clipRRect, [rrect], {#doAntiAlias: doAntiAlias}),
returnValueForMissingStub: null,
);
@override
void clipPath(_i2.Path? path, {bool? doAntiAlias = true}) =>
super.noSuchMethod(
Invocation.method(#clipPath, [path], {#doAntiAlias: doAntiAlias}),
returnValueForMissingStub: null,
);
@override
_i2.Rect getLocalClipBounds() =>
(super.noSuchMethod(
Invocation.method(#getLocalClipBounds, []),
returnValue: _FakeRect_0(
this,
Invocation.method(#getLocalClipBounds, []),
),
)
as _i2.Rect);
@override
_i2.Rect getDestinationClipBounds() =>
(super.noSuchMethod(
Invocation.method(#getDestinationClipBounds, []),
returnValue: _FakeRect_0(
this,
Invocation.method(#getDestinationClipBounds, []),
),
)
as _i2.Rect);
@override
void drawColor(_i2.Color? color, _i2.BlendMode? blendMode) =>
super.noSuchMethod(
Invocation.method(#drawColor, [color, blendMode]),
returnValueForMissingStub: null,
);
@override
void drawLine(_i2.Offset? p1, _i2.Offset? p2, _i2.Paint? paint) =>
super.noSuchMethod(
Invocation.method(#drawLine, [p1, p2, paint]),
returnValueForMissingStub: null,
);
@override
void drawPaint(_i2.Paint? paint) => super.noSuchMethod(
Invocation.method(#drawPaint, [paint]),
returnValueForMissingStub: null,
);
@override
void drawRect(_i2.Rect? rect, _i2.Paint? paint) => super.noSuchMethod(
Invocation.method(#drawRect, [rect, paint]),
returnValueForMissingStub: null,
);
@override
void drawRRect(_i2.RRect? rrect, _i2.Paint? paint) => super.noSuchMethod(
Invocation.method(#drawRRect, [rrect, paint]),
returnValueForMissingStub: null,
);
@override
void drawDRRect(_i2.RRect? outer, _i2.RRect? inner, _i2.Paint? paint) =>
super.noSuchMethod(
Invocation.method(#drawDRRect, [outer, inner, paint]),
returnValueForMissingStub: null,
);
@override
void drawOval(_i2.Rect? rect, _i2.Paint? paint) => super.noSuchMethod(
Invocation.method(#drawOval, [rect, paint]),
returnValueForMissingStub: null,
);
@override
void drawCircle(_i2.Offset? c, double? radius, _i2.Paint? paint) =>
super.noSuchMethod(
Invocation.method(#drawCircle, [c, radius, paint]),
returnValueForMissingStub: null,
);
@override
void drawArc(
_i2.Rect? rect,
double? startAngle,
double? sweepAngle,
bool? useCenter,
_i2.Paint? paint,
) => super.noSuchMethod(
Invocation.method(#drawArc, [
rect,
startAngle,
sweepAngle,
useCenter,
paint,
]),
returnValueForMissingStub: null,
);
@override
void drawPath(_i2.Path? path, _i2.Paint? paint) => super.noSuchMethod(
Invocation.method(#drawPath, [path, paint]),
returnValueForMissingStub: null,
);
@override
void drawImage(_i2.Image? image, _i2.Offset? offset, _i2.Paint? paint) =>
super.noSuchMethod(
Invocation.method(#drawImage, [image, offset, paint]),
returnValueForMissingStub: null,
);
@override
void drawImageRect(
_i2.Image? image,
_i2.Rect? src,
_i2.Rect? dst,
_i2.Paint? paint,
) => super.noSuchMethod(
Invocation.method(#drawImageRect, [image, src, dst, paint]),
returnValueForMissingStub: null,
);
@override
void drawImageNine(
_i2.Image? image,
_i2.Rect? center,
_i2.Rect? dst,
_i2.Paint? paint,
) => super.noSuchMethod(
Invocation.method(#drawImageNine, [image, center, dst, paint]),
returnValueForMissingStub: null,
);
@override
void drawPicture(_i2.Picture? picture) => super.noSuchMethod(
Invocation.method(#drawPicture, [picture]),
returnValueForMissingStub: null,
);
@override
void drawParagraph(_i2.Paragraph? paragraph, _i2.Offset? offset) =>
super.noSuchMethod(
Invocation.method(#drawParagraph, [paragraph, offset]),
returnValueForMissingStub: null,
);
@override
void drawPoints(
_i2.PointMode? pointMode,
List<_i2.Offset>? points,
_i2.Paint? paint,
) => super.noSuchMethod(
Invocation.method(#drawPoints, [pointMode, points, paint]),
returnValueForMissingStub: null,
);
@override
void drawRawPoints(
_i2.PointMode? pointMode,
_i5.Float32List? points,
_i2.Paint? paint,
) => super.noSuchMethod(
Invocation.method(#drawRawPoints, [pointMode, points, paint]),
returnValueForMissingStub: null,
);
@override
void drawVertices(
_i2.Vertices? vertices,
_i2.BlendMode? blendMode,
_i2.Paint? paint,
) => super.noSuchMethod(
Invocation.method(#drawVertices, [vertices, blendMode, paint]),
returnValueForMissingStub: null,
);
@override
void drawAtlas(
_i2.Image? atlas,
List<_i2.RSTransform>? transforms,
List<_i2.Rect>? rects,
List<_i2.Color>? colors,
_i2.BlendMode? blendMode,
_i2.Rect? cullRect,
_i2.Paint? paint,
) => super.noSuchMethod(
Invocation.method(#drawAtlas, [
atlas,
transforms,
rects,
colors,
blendMode,
cullRect,
paint,
]),
returnValueForMissingStub: null,
);
@override
void drawRawAtlas(
_i2.Image? atlas,
_i5.Float32List? rstTransforms,
_i5.Float32List? rects,
_i5.Int32List? colors,
_i2.BlendMode? blendMode,
_i2.Rect? cullRect,
_i2.Paint? paint,
) => super.noSuchMethod(
Invocation.method(#drawRawAtlas, [
atlas,
rstTransforms,
rects,
colors,
blendMode,
cullRect,
paint,
]),
returnValueForMissingStub: null,
);
@override
void drawShadow(
_i2.Path? path,
_i2.Color? color,
double? elevation,
bool? transparentOccluder,
) => super.noSuchMethod(
Invocation.method(#drawShadow, [
path,
color,
elevation,
transparentOccluder,
]),
returnValueForMissingStub: null,
);
}
/// A class which mocks [CanvasWrapper].
///
/// See the documentation for Mockito's code generation for more information.
class MockCanvasWrapper extends _i1.Mock implements _i6.CanvasWrapper {
MockCanvasWrapper() {
_i1.throwOnMissingStub(this);
}
@override
_i2.Canvas get canvas =>
(super.noSuchMethod(
Invocation.getter(#canvas),
returnValue: _FakeCanvas_1(this, Invocation.getter(#canvas)),
)
as _i2.Canvas);
@override
_i2.Size get size =>
(super.noSuchMethod(
Invocation.getter(#size),
returnValue: _FakeSize_2(this, Invocation.getter(#size)),
)
as _i2.Size);
@override
void drawRRect(_i2.RRect? rrect, _i2.Paint? paint) => super.noSuchMethod(
Invocation.method(#drawRRect, [rrect, paint]),
returnValueForMissingStub: null,
);
@override
void save() => super.noSuchMethod(
Invocation.method(#save, []),
returnValueForMissingStub: null,
);
@override
void restore() => super.noSuchMethod(
Invocation.method(#restore, []),
returnValueForMissingStub: null,
);
@override
void clipRect(
_i2.Rect? rect, {
_i2.ClipOp? clipOp = _i2.ClipOp.intersect,
bool? doAntiAlias = true,
}) => super.noSuchMethod(
Invocation.method(
#clipRect,
[rect],
{#clipOp: clipOp, #doAntiAlias: doAntiAlias},
),
returnValueForMissingStub: null,
);
@override
void translate(double? dx, double? dy) => super.noSuchMethod(
Invocation.method(#translate, [dx, dy]),
returnValueForMissingStub: null,
);
@override
void rotate(double? radius) => super.noSuchMethod(
Invocation.method(#rotate, [radius]),
returnValueForMissingStub: null,
);
@override
void drawPath(_i2.Path? path, _i2.Paint? paint) => super.noSuchMethod(
Invocation.method(#drawPath, [path, paint]),
returnValueForMissingStub: null,
);
@override
void saveLayer(_i2.Rect? bounds, _i2.Paint? paint) => super.noSuchMethod(
Invocation.method(#saveLayer, [bounds, paint]),
returnValueForMissingStub: null,
);
@override
void drawPicture(_i2.Picture? picture) => super.noSuchMethod(
Invocation.method(#drawPicture, [picture]),
returnValueForMissingStub: null,
);
@override
void drawImage(_i2.Image? image, _i2.Offset? offset, _i2.Paint? paint) =>
super.noSuchMethod(
Invocation.method(#drawImage, [image, offset, paint]),
returnValueForMissingStub: null,
);
@override
void clipPath(_i2.Path? path, {bool? doAntiAlias = true}) =>
super.noSuchMethod(
Invocation.method(#clipPath, [path], {#doAntiAlias: doAntiAlias}),
returnValueForMissingStub: null,
);
@override
void drawRect(_i2.Rect? rect, _i2.Paint? paint) => super.noSuchMethod(
Invocation.method(#drawRect, [rect, paint]),
returnValueForMissingStub: null,
);
@override
void drawLine(_i2.Offset? p1, _i2.Offset? p2, _i2.Paint? paint) =>
super.noSuchMethod(
Invocation.method(#drawLine, [p1, p2, paint]),
returnValueForMissingStub: null,
);
@override
void drawCircle(_i2.Offset? center, double? radius, _i2.Paint? paint) =>
super.noSuchMethod(
Invocation.method(#drawCircle, [center, radius, paint]),
returnValueForMissingStub: null,
);
@override
void drawArc(
_i2.Rect? rect,
double? startAngle,
double? sweepAngle,
bool? useCenter,
_i2.Paint? paint,
) => super.noSuchMethod(
Invocation.method(#drawArc, [
rect,
startAngle,
sweepAngle,
useCenter,
paint,
]),
returnValueForMissingStub: null,
);
@override
void drawText(
_i3.TextPainter? tp,
_i2.Offset? offset, [
double? rotateAngle,
]) => super.noSuchMethod(
Invocation.method(#drawText, [tp, offset, rotateAngle]),
returnValueForMissingStub: null,
);
@override
void drawVerticalText(_i3.TextPainter? tp, _i2.Offset? offset) =>
super.noSuchMethod(
Invocation.method(#drawVerticalText, [tp, offset]),
returnValueForMissingStub: null,
);
@override
void drawDot(
_i7.FlDotPainter? painter,
_i7.FlSpot? spot,
_i2.Offset? offset,
) => super.noSuchMethod(
Invocation.method(#drawDot, [painter, spot, offset]),
returnValueForMissingStub: null,
);
@override
void drawErrorIndicator(
_i7.FlSpotErrorRangePainter? painter,
_i7.FlSpot? origin,
_i2.Offset? offset,
_i2.Rect? errorRelativeRect,
_i7.AxisChartData? axisData,
) => super.noSuchMethod(
Invocation.method(#drawErrorIndicator, [
painter,
origin,
offset,
errorRelativeRect,
axisData,
]),
returnValueForMissingStub: null,
);
@override
void drawRotated({
required _i2.Size? size,
_i2.Offset? rotationOffset = _i2.Offset.zero,
_i2.Offset? drawOffset = _i2.Offset.zero,
required double? angle,
required _i6.DrawCallback? drawCallback,
}) => super.noSuchMethod(
Invocation.method(#drawRotated, [], {
#size: size,
#rotationOffset: rotationOffset,
#drawOffset: drawOffset,
#angle: angle,
#drawCallback: drawCallback,
}),
returnValueForMissingStub: null,
);
@override
void drawDashedLine(
_i2.Offset? from,
_i2.Offset? to,
_i2.Paint? painter,
List<int>? dashArray,
) => super.noSuchMethod(
Invocation.method(#drawDashedLine, [from, to, painter, dashArray]),
returnValueForMissingStub: null,
);
}
/// A class which mocks [BuildContext].
///
/// See the documentation for Mockito's code generation for more information.
class MockBuildContext extends _i1.Mock implements _i3.BuildContext {
MockBuildContext() {
_i1.throwOnMissingStub(this);
}
@override
_i3.Widget get widget =>
(super.noSuchMethod(
Invocation.getter(#widget),
returnValue: _FakeWidget_3(this, Invocation.getter(#widget)),
)
as _i3.Widget);
@override
bool get mounted =>
(super.noSuchMethod(Invocation.getter(#mounted), returnValue: false)
as bool);
@override
bool get debugDoingBuild =>
(super.noSuchMethod(
Invocation.getter(#debugDoingBuild),
returnValue: false,
)
as bool);
@override
_i3.InheritedWidget dependOnInheritedElement(
_i3.InheritedElement? ancestor, {
Object? aspect,
}) =>
(super.noSuchMethod(
Invocation.method(
#dependOnInheritedElement,
[ancestor],
{#aspect: aspect},
),
returnValue: _FakeInheritedWidget_4(
this,
Invocation.method(
#dependOnInheritedElement,
[ancestor],
{#aspect: aspect},
),
),
)
as _i3.InheritedWidget);
@override
void visitAncestorElements(_i3.ConditionalElementVisitor? visitor) =>
super.noSuchMethod(
Invocation.method(#visitAncestorElements, [visitor]),
returnValueForMissingStub: null,
);
@override
void visitChildElements(_i3.ElementVisitor? visitor) => super.noSuchMethod(
Invocation.method(#visitChildElements, [visitor]),
returnValueForMissingStub: null,
);
@override
void dispatchNotification(_i3.Notification? notification) =>
super.noSuchMethod(
Invocation.method(#dispatchNotification, [notification]),
returnValueForMissingStub: null,
);
@override
_i3.DiagnosticsNode describeElement(
String? name, {
_i4.DiagnosticsTreeStyle? style = _i4.DiagnosticsTreeStyle.errorProperty,
}) =>
(super.noSuchMethod(
Invocation.method(#describeElement, [name], {#style: style}),
returnValue: _FakeDiagnosticsNode_5(
this,
Invocation.method(#describeElement, [name], {#style: style}),
),
)
as _i3.DiagnosticsNode);
@override
_i3.DiagnosticsNode describeWidget(
String? name, {
_i4.DiagnosticsTreeStyle? style = _i4.DiagnosticsTreeStyle.errorProperty,
}) =>
(super.noSuchMethod(
Invocation.method(#describeWidget, [name], {#style: style}),
returnValue: _FakeDiagnosticsNode_5(
this,
Invocation.method(#describeWidget, [name], {#style: style}),
),
)
as _i3.DiagnosticsNode);
@override
List<_i3.DiagnosticsNode> describeMissingAncestor({
required Type? expectedAncestorType,
}) =>
(super.noSuchMethod(
Invocation.method(#describeMissingAncestor, [], {
#expectedAncestorType: expectedAncestorType,
}),
returnValue: <_i3.DiagnosticsNode>[],
)
as List<_i3.DiagnosticsNode>);
@override
_i3.DiagnosticsNode describeOwnershipChain(String? name) =>
(super.noSuchMethod(
Invocation.method(#describeOwnershipChain, [name]),
returnValue: _FakeDiagnosticsNode_5(
this,
Invocation.method(#describeOwnershipChain, [name]),
),
)
as _i3.DiagnosticsNode);
}
/// A class which mocks [Utils].
///
/// See the documentation for Mockito's code generation for more information.
class MockUtils extends _i1.Mock implements _i8.Utils {
MockUtils() {
_i1.throwOnMissingStub(this);
}
@override
double radians(double? degrees) =>
(super.noSuchMethod(
Invocation.method(#radians, [degrees]),
returnValue: 0.0,
)
as double);
@override
double degrees(double? radians) =>
(super.noSuchMethod(
Invocation.method(#degrees, [radians]),
returnValue: 0.0,
)
as double);
@override
double translateRotatedPosition(double? size, double? degree) =>
(super.noSuchMethod(
Invocation.method(#translateRotatedPosition, [size, degree]),
returnValue: 0.0,
)
as double);
@override
_i2.Offset calculateRotationOffset(_i2.Size? size, double? degree) =>
(super.noSuchMethod(
Invocation.method(#calculateRotationOffset, [size, degree]),
returnValue: _FakeOffset_6(
this,
Invocation.method(#calculateRotationOffset, [size, degree]),
),
)
as _i2.Offset);
@override
_i3.BorderRadius? normalizeBorderRadius(
_i3.BorderRadius? borderRadius,
double? width,
) =>
(super.noSuchMethod(
Invocation.method(#normalizeBorderRadius, [borderRadius, width]),
)
as _i3.BorderRadius?);
@override
_i3.BorderSide normalizeBorderSide(
_i3.BorderSide? borderSide,
double? width,
) =>
(super.noSuchMethod(
Invocation.method(#normalizeBorderSide, [borderSide, width]),
returnValue: _FakeBorderSide_7(
this,
Invocation.method(#normalizeBorderSide, [borderSide, width]),
),
)
as _i3.BorderSide);
@override
double getEfficientInterval(
double? axisViewSize,
double? diffInAxis, {
double? pixelPerInterval = 40.0,
}) =>
(super.noSuchMethod(
Invocation.method(
#getEfficientInterval,
[axisViewSize, diffInAxis],
{#pixelPerInterval: pixelPerInterval},
),
returnValue: 0.0,
)
as double);
@override
double roundInterval(double? input) =>
(super.noSuchMethod(
Invocation.method(#roundInterval, [input]),
returnValue: 0.0,
)
as double);
@override
int getFractionDigits(double? value) =>
(super.noSuchMethod(
Invocation.method(#getFractionDigits, [value]),
returnValue: 0,
)
as int);
@override
String formatNumber(double? axisMin, double? axisMax, double? axisValue) =>
(super.noSuchMethod(
Invocation.method(#formatNumber, [axisMin, axisMax, axisValue]),
returnValue: _i9.dummyValue<String>(
this,
Invocation.method(#formatNumber, [axisMin, axisMax, axisValue]),
),
)
as String);
@override
_i3.TextStyle getThemeAwareTextStyle(
_i3.BuildContext? context,
_i3.TextStyle? providedStyle,
) =>
(super.noSuchMethod(
Invocation.method(#getThemeAwareTextStyle, [
context,
providedStyle,
]),
returnValue: _FakeTextStyle_8(
this,
Invocation.method(#getThemeAwareTextStyle, [
context,
providedStyle,
]),
),
)
as _i3.TextStyle);
@override
double getBestInitialIntervalValue(
double? min,
double? max,
double? interval, {
double? baseline = 0.0,
}) =>
(super.noSuchMethod(
Invocation.method(
#getBestInitialIntervalValue,
[min, max, interval],
{#baseline: baseline},
),
returnValue: 0.0,
)
as double);
@override
double convertRadiusToSigma(double? radius) =>
(super.noSuchMethod(
Invocation.method(#convertRadiusToSigma, [radius]),
returnValue: 0.0,
)
as double);
}