get method

  1. @override
IconData? get({
  1. String? dotnotation,
})
override

Implementation

@override
IconData? get({String? dotnotation}) {
  dynamic value = super.get();
  return (value is IconData) ? value : null;
}