statusLabel method
Implementation
String statusLabel() {
switch (this) {
case VideoCallStatus.scheduled:
return '予定あり';
case VideoCallStatus.cancelled:
return 'キャンセル';
case VideoCallStatus.finished:
return '終了';
}
}
String statusLabel() {
switch (this) {
case VideoCallStatus.scheduled:
return '予定あり';
case VideoCallStatus.cancelled:
return 'キャンセル';
case VideoCallStatus.finished:
return '終了';
}
}