dart:core
库中Invocation.setter
的用法介绍如下。
用法:
Invocation.setter(
Symbol memberName,
Object? argument
)
创建对应于 setter 调用的调用。
此构造函数接受任何 Symbol 作为 memberName
,但请记住 actual setter names
以 =
结尾,因此对应于 object.member = value
的调用是
Invocation.setter(const Symbol("member="), value)
相关用法
- Dart Int32x4List.view用法及代码示例
- Dart Int64List.sublist用法及代码示例
- Dart Int8List.view用法及代码示例
- Dart Int8List.sublist用法及代码示例
- Dart Int16List.view用法及代码示例
- Dart Int32List.sublist用法及代码示例
- Dart Int16List.sublist用法及代码示例
- Dart Int32x4List.sublist用法及代码示例
- Dart Int64List.view用法及代码示例
- Dart Int32List.view用法及代码示例
- Dart Iterator用法及代码示例
- Dart Iterable.takeWhile用法及代码示例
- Dart ImmutableListMixin.replaceRange用法及代码示例
- Dart IterableMixin.isNotEmpty用法及代码示例
- Dart IterableMixin.firstWhere用法及代码示例
- Dart IterableMixin.lastWhere用法及代码示例
- Dart Iterable.skipWhile用法及代码示例
- Dart IterableMixin.every用法及代码示例
- Dart Iterable.toSet用法及代码示例
- Dart ImmutableListMixin.insert用法及代码示例
- Dart Iterable.singleWhere用法及代码示例
- Dart Iterable.reduce用法及代码示例
- Dart Iterable.elementAt用法及代码示例
- Dart ImmutableListMixin.addAll用法及代码示例
- Dart Iterable.where用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 Invocation.setter constructor。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。