getterSetter function
Implementation
List<Method> getterSetter(String name, String type, {bool isAbstract = true}) {
return [
getter(name, type, isAbstract: isAbstract),
setter(name, type, isAbstract: isAbstract),
];
}
List<Method> getterSetter(String name, String type, {bool isAbstract = true}) {
return [
getter(name, type, isAbstract: isAbstract),
setter(name, type, isAbstract: isAbstract),
];
}